 /* =========================================
   1. THEME VARIABLES
   ========================================= */
:root {
    --col-dark-purple: #4A144B;
    --col-purple: #4A144B;
    --col-dark-purple: #1f0b20; /* Darker for better contrast */
    --col-pink: #ff3399;
    --col-gold: #d4af37;
    
    --bg-body: #fdfbf9;
    --bg-white: #ffffff;
    
    --font-head: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --radius-card: 16px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--font-body); background: var(--bg-body); 
    color: #333; overflow-x: hidden;
}
.content-section {
    background: #fdfbf9;
}       
        /* =========================================
   3. MINIMAL HERO (Compact)
   ========================================= */
.podcasts-page .hero-section {
    background: var(--col-dark-purple);
    color: white;
    padding: 50px;
    position: relative;
    overflow: hidden;
    min-height: auto !important;
}

.hero-grid { 
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; 
}

/* Left Side: Content */
.hero-tag { 
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--col-gold); text-transform: uppercase; letter-spacing: 1.5px; 
    font-size: 0.7rem; font-weight: 700; margin-bottom: 15px;
}
.live-dot { width: 8px; height: 8px; background: red; border-radius: 50%; box-shadow: 0 0 8px red; }

.hero-h1 { 
    font-family: var(--font-head); font-size: 2.8rem; /* Smaller font */
    line-height: 1.1; margin-bottom: 15px; 
    margin-top: 0px;
}
.hero-p { 
    font-size: 1rem; opacity: 0.8; line-height: 1.5; margin-bottom: 25px; 
    max-width: 500px; 
}

.hero-actions { display: flex; gap: 15px; align-items: center; }

.btn-play-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; color: var(--col-purple); padding: 12px 30px;
    border-radius: 50px; font-weight: 700; font-size: 0.95rem;
    transition: 0.3s;
}
.btn-play-hero:hover { background: var(--col-pink); color: white; }

/* Right Side: Preview & Stats (Merged) */
.hero-right { position: relative; }

.hero-video-card {
    border-radius: 20px; overflow: hidden; aspect-ratio: 16/9;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3); border: 2px solid rgba(255,255,255,0.1);
    position: relative;
}
.hero-thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: 0.3s; }
.hero-video-card:hover .hero-thumb { opacity: 1; transform: scale(1.03); }
.play-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: rgba(255,255,255,0.2); 
    backdrop-filter: blur(5px); border-radius: 50%; display: flex;
    justify-content: center; align-items: center; border: 1px solid rgba(255,255,255,0.5);
}
.play-overlay i { color: white; font-size: 1.5rem; margin-left: 3px; }

/* Integrated Stats (Small bar below video) */
.mini-stats {
    display: flex; gap: 20px; margin-top: 15px; justify-content: center;
    font-size: 0.8rem; opacity: 0.7;
}
.stat span { color: var(--col-gold); font-weight: 700; margin-right: 5px; }

/* =========================================
   4. CATEGORY STRIP (Immediate Access)
   ========================================= */
.filter-strip {
    padding: 30px 0; border-bottom: 1px solid #eee; background: white;
}
.tabs-wrapper {
    display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.tab-btn {
    padding: 8px 20px; border-radius: 30px; border: 1px solid #eee; 
    background: white; color: #666; font-weight: 600; font-size: 0.9rem; 
    cursor: pointer; transition: 0.3s;
}
.tab-btn:hover, .tab-btn.active { 
    background: var(--col-purple); color: white; border-color: var(--col-purple); 
}

/* =========================================
   5. MAIN GRID
   ========================================= */
.content-section { padding: 50px 0 80px 0; }

.video-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}

.video-card {
    background: white; border-radius: var(--radius-card); overflow: hidden;
    box-shadow: var(--shadow-soft); transition: 0.3s; cursor: pointer;
    display: flex; flex-direction: column; border: 1px solid #eee;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

.v-thumb-box { position: relative; height: 180px; overflow: hidden; }
.v-thumb { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.video-card:hover .v-thumb { transform: scale(1.05); }

.duration {
    position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.8);
    color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.7rem; font-weight: 600;
}

.v-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.v-cat { color: var(--col-pink); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }

.v-title { 
    font-family: var(--font-head);     font-size: 1rem;     margin-bottom: 8px;     line-height: 1.5;     color: #222;     margin-top: 0px !important; font-weight: 600;
}
.v-desc { font-size: 0.85rem; color: #666; line-height: 1.5; margin-bottom: 15px; flex: 1; }

.v-meta { 
    border-top: 1px solid #f5f5f5; padding-top: 12px; display: flex; 
    justify-content: space-between; align-items: center; color: #999; font-size: 0.8rem; 
}
.v-speaker { display: flex; align-items: center; gap: 6px; font-weight: 600; color: #4A144B; }
.v-guest { color: #FF3399; }
.speaker-pic { width: 22px; height: 22px; border-radius: 50%; }

/* =========================================
   6. EXPERT ROW (Compact)
   ========================================= */
.expert-row {
    background: #f4f4f4; padding: 60px 0; text-align: center;
}
.expert-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.expert-mini { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ex-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.ex-name { font-weight: 700; font-size: 0.9rem; }
.ex-title { font-size: 0.8rem; color: var(--col-purple); }

/* Animation */
.audio-wave { display: inline-flex; align-items: flex-end; gap: 2px; height: 15px; margin-left: 8px; }
.bar { width: 3px; background: var(--col-pink); animation: wave 1s infinite ease-in-out; }
.bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 8px; animation-delay: 0.2s; }
@keyframes wave { 0%, 100% { height: 4px; } 50% { height: 100%; } }


@media (max-width: 900px) {
    .hero-section { padding-left: 20px !important; padding-right: 20px !important; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-h1 {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.5;
    }
    .hero-p { margin: 0 auto 20px auto; }
    .hero-tag, .hero-actions { justify-content: center; }
    .video-grid { grid-template-columns: 1fr; }
    .mini-stats { justify-content: center; }
  
    .filter-strip {
        padding: 20px 0; border-bottom: 1px solid #eee; background: white;  padding-left:10px;
        position: sticky; top: 60px; z-index: 90; /* Stick below header */
    }
    .tabs-wrapper {
        display: flex; gap: 10px; overflow-x: auto; padding: 0 20px; justify-content:normal; flex-wrap: nowrap;
        scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
    }
    .tabs-wrapper::-webkit-scrollbar { display: none; }

    .tab-btn {
        flex: 0 0 auto; scroll-snap-align: start;
        padding: 8px 18px; border-radius: 30px; border: 1px solid #eee; 
        background: white; color: #666; font-weight: 600; font-size: 0.85rem; 
    }
    .tab-btn.active { 
        background: var(--col-purple); color: white; border-color: var(--col-purple); 
    }
    
    .expert-row {
        background: #f4f4f4; padding: 40px 0; text-align: center; margin-top: 20px;
    }
    .expert-grid { 
        display: flex; gap: 20px; overflow-x: auto; padding: 20px; flex-wrap: nowrap; justify-content: start;
        scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
    }
    .expert-grid::-webkit-scrollbar { display: none; }

    .expert-mini { 
        min-width: 140px; scroll-snap-align: start;
        display: flex; flex-direction: column; align-items: center; gap: 8px; 
        background: white; padding: 15px; border-radius: 15px; box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }
    .ex-img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #eee; }
    .ex-name { font-weight: 700; font-size: 0.85rem; }
    .ex-title { font-size: 0.7rem; color: var(--col-purple); }
}